home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of www.BestZips.com (Collector's Edition)
/
Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO
/
prgtools
/
prtsut53.zip
/
SU1CP_32.ZIP
/
PRINTIT.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-01-28
|
604b
|
46 lines
{
PrintIt - Report Components - Form and Window Printing
Copyright (c), 1996, Calitz Bros. All rights reserved
}
unit Printit;
interface
uses
Classes,
DsgnIntf,
Dialogs,
SysUtils,
PrnWin,
DBPrnWin,
VRuler,
HRuler,
Totals,
CB_Types,
CB_Gdi,
CB_MFunc,
FuncsDb,
PrintWiz,
AddIt,
CBAbout;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Printit',[TDBPrintWin, TPrintWin, THRuler, TVRuler,
TShowTotal]);
RegisterComponentEditor(TPrintWin, TCBEditor)
end;
end.